home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 001-025 / scopedisk1 / btoatob / btoatob.doc < prev    next >
Text File  |  1995-03-18  |  1KB  |  43 lines

  1. Subject: btoa/atob documentation
  2. To:      usersoftware
  3. Text:
  4.       *** BTOA --- ATOB ***                            Page 1
  5.  
  6.       NAME   
  7.           btoa, atob - binary to printable ASCII
  8.  
  9.       SYNOPSIS
  10.           btoa     
  11.           atob
  12.  
  13.       DESCRIPTION
  14.           _B_t_o_a is a filter that reads anything from the standard
  15.           input, and encodes it into printable ASCII on the standard
  16.           output.  It also attaches a header and checksum information
  17.           used by the reverse filter _a_t_o_b to find the start of the
  18.           data and to check integrity.
  19.   
  20.               Example:
  21.                        1>btoa <epson >epson.asc              
  22.  
  23.  
  24.  
  25.           _A_t_o_b reads an encoded file, strips off any leading and
  26.           trailing lines added by mailers, and recreates a copy of the
  27.           original file on the standard output.  _A_t_o_b gives NO output
  28.           (and exits with an error message) if its input is garbage or
  29.           the checksums do not check.
  30.  
  31.               Example:
  32.                        1>atob <epson.asc >epson
  33.  
  34.       AUTHOR
  35.           Paul Rutter (modified by Joe Orost)
  36.  
  37.       FEATURES
  38.           _B_t_o_a uses a compact base-85 encoding so that 4 bytes are
  39.           encoded into 5 characters (file is expanded by 25%). As a 
  40.           special case, 32-bit zero is encoded as one character.
  41.  
  42. /* EOF */
  43.